home *** CD-ROM | disk | FTP | other *** search
/ Network Support Library / RoseWare - Network Support Library.iso / apidev / netdmo.exe / WVSC.FRM < prev   
Text File  |  1993-12-10  |  2KB  |  80 lines

  1. Version 1.00
  2. BEGIN Form Wvsc
  3.     AutoRedraw   = 0
  4.     BackColor    = QBColor(1)
  5.     BorderStyle  = 1
  6.     Caption      = "West Valley Software Company"
  7.     ControlBox   = -1
  8.     Enabled      = -1
  9.     ForeColor    = QBColor(0)
  10.     Height       = Char(18)
  11.     Left         = Char(8)
  12.     MaxButton    = -1
  13.     MinButton    = -1
  14.     MousePointer = 0
  15.     Tag          = ""
  16.     Top          = Char(2)
  17.     Visible      = -1
  18.     Width        = Char(64)
  19.     WindowState  = 0
  20.     BEGIN PictureBox Picture1
  21.         AutoRedraw   = -1
  22.         BackColor    = QBColor(1)
  23.         BorderStyle  = 1
  24.         DragMode     = 0
  25.         Enabled      = -1
  26.         ForeColor    = QBColor(15)
  27.         Height       = Char(12)
  28.         Left         = Char(0)
  29.         MousePointer = 0
  30.         TabIndex     = 0
  31.         TabStop      = -1
  32.         Tag          = ""
  33.         Top          = Char(0)
  34.         Visible      = -1
  35.         Width        = Char(62)
  36.     END
  37.     BEGIN CommandButton okbuton
  38.         BackColor    = QBColor(7)
  39.         Cancel       = 0
  40.         Caption      = " OK "
  41.         Default      = 0
  42.         DragMode     = 0
  43.         Enabled      = -1
  44.         Height       = Char(3)
  45.         Left         = Char(23)
  46.         MousePointer = 0
  47.         TabIndex     = 1
  48.         TabStop      = -1
  49.         Tag          = ""
  50.         Top          = Char(12)
  51.         Visible      = -1
  52.         Width        = Char(14)
  53.     END
  54. END
  55. '$FORM Netdemo
  56.  
  57. SUB Form_Load ()
  58. Picture1.PRINT "WEST VALLEY SOFTWARE COMPANY was founded in 1992. Since "
  59. Picture1.PRINT "that time, the people at WVSC have been working hard to "
  60. Picture1.PRINT "bring you state of the art software products."
  61. Picture1.PRINT "Our most popular product has been NETWORK SYSTEM CALLS "
  62. Picture1.PRINT "FOR BASIC. This set of assembly language procedures "
  63. Picture1.PRINT "give the BASIC programer system level access to Novell's"
  64. Picture1.PRINT "Netware 286 and 386 operating systems. The package comes"
  65. Picture1.PRINT "with 35 procedures in library form, a sample program for"
  66. Picture1.PRINT "each call, the source code for this demo, and a manual."
  67.  
  68.  
  69. END SUB
  70.  
  71. SUB Form_Unload (Cancel AS INTEGER)
  72. Netdemo.SHOW
  73. END SUB
  74.  
  75. SUB OKButon_Click ()
  76. UNLOAD wvsc
  77. Netdemo.SHOW
  78. END SUB
  79.  
  80.